feat(wasm-utxo): implement PSBT creation and manipulation utilities#77
Merged
OttoAllmendinger merged 4 commits intomasterfrom Dec 18, 2025
Merged
feat(wasm-utxo): implement PSBT creation and manipulation utilities#77OttoAllmendinger merged 4 commits intomasterfrom
OttoAllmendinger merged 4 commits intomasterfrom
Conversation
Update the derivation path separator in the test wallet keys function to use a period (.) instead of a slash (/) to match the TypeScript implementation in keys.ts. Issue: BTC-2893 Co-authored-by: llm-git <llm-git@ttll.de>
Add methods to create empty PSBTs and manipulate them by adding inputs and outputs. This extends the BitGoPsbt class with: - `createEmpty` static method to create new PSBTs - `addInput` method for adding transaction inputs with witness UTXO data - `addOutput` method for adding transaction outputs Issue: BTC-2893 Co-authored-by: llm-git <llm-git@ttll.de>
Add low-level PSBT parsing and comparison utilities that work at the key-value pair level. These utilities provide detailed error messages showing exactly which fields differ between two PSBTs, making debugging test failures much easier. Issue: BTC-2893 Co-authored-by: llm-git <llm-git@ttll.de>
Add complete API for PSBT construction with full wallet metadata: - Add wallet inputs with script path or key path spending - Add wallet outputs with proper derivation info - Add replay protection inputs with P2SH-P2PK scripts - Support transaction reconstruction from parsed data - Include input sequence number in parsed input data - Add version and lockTime getters to PSBT class Issue: BTC-2893 Co-authored-by: llm-git <llm-git@ttll.de>
a4b8411 to
e615905
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds comprehensive PSBT (Partially Signed Bitcoin Transaction)
functionality to the wasm-utxo module, including:
createEmptystatic method to initialize empty PSBTsperiods instead of slashes)
BTC-2893